
/* 
body {
  font-family: "K2D", sans-serif;
  background: #f7f9fc;
  padding: 40px;
  display: flex;
  justify-content: center;
} */

/* คอนเทนเนอร์ */
.borrow-container {
  max-width: 800px;
  width: 100%;
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);

  /* เพิ่มคำสั่งเพื่อจัดกลาง */
  margin: 50px auto; /* กึ่งกลางแนวนอน, 50px จากบน */
}

/* หัวข้อ */
.borrow-title {
  text-align: center;
  font-size: 28px;
  color: #f4a261;
  margin-bottom: 15px;
  /* border-bottom: 3px solid #3498db; */
  /* text-decoration: underline rgb(102, 102, 102) 4px; เส้นใต้หยักสีเขียว หนา 2px */
  padding-bottom: 10px;
}

/* ตาราง */
.borrow-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.borrow-table th, 
.borrow-table td {
  padding: 16px;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
  font-size: 18px;
}

.borrow-table th {
  background: #f4a261;
  color: white;
  font-size: 20px;
}

.borrow-table tr {
  transition: all 0.3s ease;
}

.borrow-table tr:hover {
  background: #fff7ec;
  transform: scale(1.01);
}

/* สีแต่ละประเภท */
.row-student td:first-child {
  color: #fd9ad7;
  font-weight: bold;
}
.row-staff td:first-child {
  color: #f39c12;
  font-weight: bold;
}
.row-general td:first-child {
  color: #2980b9;
  font-weight: bold;
}
.row-teacher td:first-child {
  color: #27ae60;
  font-weight: bold;
}

/* กล่องค่าปรับ */
.borrow-fine {
  /* background: #dfdfdf;
  border-left: 6px solid #f4a261; */
  padding: 15px 20px;
  border-radius: 12px;
  font-size: 18px;
  text-align: center;
  color: #232323;
}

.borrow-fine span {
  color: #c0392b;
  font-weight: bold;
}